SVG to PNG 发表于 2018-09-18 分类于 PHP 不明生物: Installation $ composer require meyfa/php-svg Getting Started 1234567891011121314151617require '../vendor/autoload.php';use SVG\SVGImage;use SVG\Nodes\Shapes\SVGRect;$svg = file_get_contents("d:/1.svg");$svg = str_replace('fill="#2c2c2c"','fill="#e21010"',$svg);$image = SVGImage::fromString($svg);$rasterImage = $image->toRasterImage(200, 200);header('Content-Type: image/png');imagepng($rasterImage,'d:/1.png'); 关注作者公众号,获取更多资源! 赏作者一杯咖啡~ 赏 微信支付 支付宝 本文作者: Mr.Gou 本文链接: https://ya2.top/articles/SVG to PNG/ 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-ND 许可协议。转载请注明出处!